home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
SYS
/
s
/
JumpScreen.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-09-26
|
449b
|
25 lines
/*
*
* Script name: JumpScreen.rexx
* Author: Franz Hemmer
* Purpose: Demonstrate how to get Watcher title bar text.
* Written: 25.11.92
* Comments: You need to have Watcher running.
*
*/
Options FailAt 100
Options Results
address WATCHER1 /* Address Watcher's ARexx port. */
lf = '0A'x
/*
* Try to read the window title bar
*/
JumpScreen
IF rc > 0 THEN
SAY 'Error was 'WATCHER.LASTERROR
ELSE
SAY 'Jump ok!'